home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _8F057D9A8BF9425AB041341CD6676E7B < prev    next >
Encoding:
Text File  |  2006-08-04  |  548 b   |  22 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Pentagon():
  13.     return {
  14.         'BackgroundColor': (0,0,0), 
  15.         'EdgeMode': App.Constants.EdgeMode.Wrap
  16.         }
  17.  
  18. def Do(Environment):
  19.     # Pentagon
  20.     App.Do( Environment, 'Pentagon',         Preset_Pentagon())
  21.  
  22.